home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v8n08.arc / MOUSECTL.DOC < prev    next >
Text File  |  1989-03-28  |  2KB  |  54 lines

  1.  
  2. MOUSECTL.COM
  3. Command
  4.  
  5. Michael J. Mefford
  6. 1989 No. 8 (Utilities)
  7.  
  8.  
  9. Purpose:    Provides multiple sensitivity settings for achieving more
  10. precise and smooth control of IBM and MicroSoft mice.
  11.  
  12. Format:    MOUSECTL [n ... n | filename | /U]
  13.     
  14. Remarks:    MOUSECTL is a memory-resident utility that can be loaded either
  15. at the DOS prompt or as part of an AUTOEXEC.BAT file.  It can be used only with
  16. IBM or MicroSoft mouse drivers and must be loaded after either MOUSE.SYS or
  17. MOUSE.COM.  MOUSECTL can be deinstalled by entering the command with the /U
  18. switch.
  19.  
  20.     The optional n parameters consist of up to eight "multiplier" values
  21. between 0 and 32767, which are used to modify the mouse sensitivity.  The
  22. default values are 5,6,10,15,22,30,50,70.  Other values for n may be entered
  23. using either a space or a comma delimiter.  The n values are entered into a
  24. look-up table from left to right; if less than 8 numbers are entered those
  25. already in the table remain in force.
  26.     
  27.     The range values represent the number of mickeys (1/200th-inch
  28. increments) the mouse actually moves during its 25-millisecond reporting period. 
  29. The multiplier values (n) are divided by 10 and then multiplied by the range
  30. value to determine the adjusted number of mickeys reported to the application
  31. program.  For example, an actual motion of 5 mickeys, multiplied by 0.6 results
  32. in 3 mickeys being reported, slowing the mouse movement to obtain more precise
  33. control for drawing.  A movement of 30 mickeys in one 25-ms period will be
  34. multiplied by 5.0, so that 150 mickeys will be reported, moving the cursor very
  35. rapidly for page scanning.  
  36.  
  37. Note:    Because MicroSoft Windows loads its own mouse driver, MOUSECTL cannot be
  38. used with Windows utilities or with programs (such as Pagemaker) that must,
  39. rather than may, be run under Windows.
  40.  
  41.     Available for downloading from PC MagNet (see the accompanying sidebar
  42. MOUSECTL by Modem), MOUSECTL.COM is already compiled and ready to run.  As an
  43. alternative, MOUSECTL.COM can be created from either of two program files that
  44. are both printed in the article and are available for downloading from PC
  45. MagNet.  MOUSECTL.BAS will automatically create MOUSECTL.COM when run once in
  46. BASIC.  To create MOUSECTL.COM from the MOUSECTL.ASM source code requires use of
  47. a macro assembler (IBM or Microsoft, Version 2 or later) and the following
  48.  commands:
  49.  
  50. MASM MOUSECTL;
  51. LINK MOUSECTL;
  52. EXE2BIN MOUSECTL MOUSECTL.COM;
  53.     
  54.